home *** CD-ROM | disk | FTP | other *** search
- VERSION 4.00
- Begin VB.Form frmAbout
- BorderStyle = 0 'None
- Caption = "VBMax 3D Effects Demo - About"
- ClientHeight = 2565
- ClientLeft = 330
- ClientTop = 1965
- ClientWidth = 5415
- ControlBox = 0 'False
- Height = 2970
- Icon = "3DAbout.frx":0000
- Left = 270
- LinkTopic = "Form1"
- LockControls = -1 'True
- MaxButton = 0 'False
- MinButton = 0 'False
- ScaleHeight = 2565
- ScaleWidth = 5415
- ShowInTaskbar = 0 'False
- Top = 1620
- Width = 5535
- Begin VB.Shape Shape1
- Height = 555
- Left = 480
- Top = 960
- Visible = 0 'False
- Width = 4470
- End
- Begin VB.Label lblClose
- Appearance = 0 'Flat
- BackColor = &H80000005&
- BackStyle = 0 'Transparent
- ForeColor = &H00000000&
- Height = 330
- Left = 4410
- TabIndex = 4
- Top = 1800
- Width = 540
- End
- Begin VB.Label lblName
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "Mike Stanley"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 9.75
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H00000000&
- Height = 240
- Left = 1680
- TabIndex = 3
- Top = 1620
- Width = 1155
- End
- Begin VB.Label lblEMail
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "E-Mail: 74632.2227@compuserve.com"
- BeginProperty Font
- name = "MS Sans Serif"
- charset = 0
- weight = 400
- size = 9.75
- underline = 0 'False
- italic = 0 'False
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H00000000&
- Height = 240
- Left = 480
- TabIndex = 2
- Top = 1935
- Width = 3465
- End
- Begin VB.Label lblVBMax
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "Visual Basic to the Max"
- BeginProperty Font
- name = "Times New Roman"
- charset = 0
- weight = 700
- size = 21.75
- underline = 0 'False
- italic = -1 'True
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H00FFFFFF&
- Height = 495
- Left = 540
- TabIndex = 1
- Top = 960
- Width = 4290
- End
- Begin VB.Label lblTitle
- AutoSize = -1 'True
- BackStyle = 0 'Transparent
- Caption = "VBMax 3D Effects"
- BeginProperty Font
- name = "Times New Roman"
- charset = 0
- weight = 700
- size = 24
- underline = -1 'True
- italic = -1 'True
- strikethrough = 0 'False
- EndProperty
- ForeColor = &H00800000&
- Height = 540
- Left = 840
- TabIndex = 0
- Top = 300
- Width = 3720
- End
- Begin VB.Label lblCloseCaption
- Appearance = 0 'Flat
- AutoSize = -1 'True
- BackColor = &H80000005&
- BackStyle = 0 'Transparent
- Caption = "Close"
- ForeColor = &H000000FF&
- Height = 195
- Left = 4470
- TabIndex = 5
- Top = 1845
- Width = 390
- End
- Attribute VB_Name = "frmAbout"
- Attribute VB_Creatable = False
- Attribute VB_Exposed = False
- Option Explicit
- Dim mo3D As New C3D
- Private Sub Form_Load()
- CenterForm Me
- With mo3D
- .Style = gnFLOATING
- .Caption lblVBMax, gnUSE_CONTROL_FONT
-
- .Style = gnRAISED
- .Caption lblTitle, gnUSE_CONTROL_FONT
-
- .Style = gnRAISED
- .Caption lblName, gnUSE_CONTROL_FONT
- .Caption lblEMail, gnUSE_CONTROL_FONT
- .Caption lblCloseCaption, gnUSE_CONTROL_FONT
- .Depth = 2
- .Border lblClose
- .Border Shape1
-
- .Style = gnRECESSED
- .Width = 15
- .FormBorder Me
- End With
- End Sub
- Private Sub lblClose_Click()
- Unload Me
- Set mo3D = Nothing
- Set frmAbout = Nothing
- End Sub
- Private Sub lblClose_MouseDown(Button As Integer, Shift As Integer, X As Single, Y As Single)
- With mo3D
- .Depth = 2
- .Width = 0
- .Style = gnRECESSED
- .Border lblClose
- End With
- End Sub
- Private Sub lblClose_MouseUp(Button As Integer, Shift As Integer, X As Single, Y As Single)
- With mo3D
- .Style = gnRAISED
- .Border lblClose
- End With
- End Sub
-